typ1 x = 86;
typ2 y = 75;


decltype(x+y) f(typ1 a, typ2 b)
{
    return a+b;
}